Skip to content

Commit 696e395

Browse files
committed
Added missing dependency
1 parent dbfef99 commit 696e395

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

‎pyproject.toml‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ dependencies = [
5050
'fpdf',
5151
'langchain_core',
5252
'langchain_community',
53-
'langchain_chroma'
53+
'langchain_chroma',
54+
'langchain_openai'
5455

5556
]
5657

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"token": "your_api_token_here",
3+
"name": "fake_api",
4+
"host": "https://dummyjson.com",
5+
"description": "API for managing users, including auth, filtering, sorting, and relations like carts/posts/todos.",
6+
"correct_endpoints": [
7+
"/users",
8+
"/users/{id}",
9+
"/users/search",
10+
"/users/filter",
11+
"/user/login",
12+
"/user/me",
13+
"/users/add"
14+
],
15+
"query_params": {
16+
"/users": [
17+
"limit",
18+
"skip",
19+
"select",
20+
"sortBy",
21+
"order"
22+
],
23+
"/users/search": [
24+
"q"
25+
],
26+
"/users/filter": [
27+
"key",
28+
"value"
29+
]
30+
},
31+
"password_file": "config/best1050.txt",
32+
"csv_file": "config/credentials.csv"
33+
}

0 commit comments

Comments
 (0)