Skip to content

Commit 0a66e2e

Browse files
committed
feat: Version defining
1 parent da0666d commit 0a66e2e

2 files changed

Lines changed: 17 additions & 12 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ If no arguments are provided, it will use the default repository and output path
6868
2. Run the image.
6969

7070
``` bash
71-
docker run -it --env-file .env -p 1234:1234 llm-software-finder
71+
docker run -it --env-file .env -p 1234:1234 --entrypoint bash llm-software-finder
7272
```
7373

7474
If you are developping the application it's useful to mount the app volume.
7575
7676
``` bash
77-
docker run -it --env-file .env -p 1234:1234 -v .:/app llm-software-finder
77+
docker run -it --env-file .env -p 1234:1234 -v .:/app --entrypoint bash llm-software-finder
7878
```
7979
8080
3. Then you can run the tool via

pyproject.toml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,20 @@ classifiers = [
2727
]
2828

2929
dependencies = [
30-
"fastapi",
31-
"uvicorn[standard]",
32-
"gimie",
33-
"pydantic",
34-
"python-dotenv",
35-
"requests",
36-
"openai",
37-
"tiktoken",
38-
"typing-extensions"
30+
"fastapi==0.115.13",
31+
"uvicorn[standard]==0.34.3",
32+
"gimie==0.7.2",
33+
"pydantic==2.11.7",
34+
"python-dotenv==0.21.1",
35+
"requests==2.32.4",
36+
"openai==1.91.0",
37+
"tiktoken==0.9.0",
38+
"google-genai==0.1.0",
39+
"repo-to-text==0.7.0",
40+
"PyLD==2.0.4",
41+
"rdflib==6.2.0",
42+
"rdflib-jsonld==0.6.2",
43+
"PyYAML==6.0.2",
3944
]
4045

4146
[project.urls]
@@ -45,4 +50,4 @@ Issues = "https://github.com/Imaging-Plaza/llm-software-finder/issues"
4550

4651
[project.scripts]
4752
# This assumes your CLI entry point is a function named 'main' in src/main.py
48-
llm-finder
53+
llm-finder = "src.main:main"

0 commit comments

Comments
 (0)