Spaces:
Build error
Build error
Upload 2 files
Browse files- config.json +19 -0
- requirements.txt +15 -0
config.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"main_llm": "deepseek-r1-distill-llama-70b",
|
| 3 |
+
"plan_method": "generation",
|
| 4 |
+
"use_detailed_query": false,
|
| 5 |
+
"cypher_gen_method": "guided",
|
| 6 |
+
"validate_cypher": false,
|
| 7 |
+
"summarize_model": "deepseek-r1-distill-llama-70b",
|
| 8 |
+
"eval_method": "binary",
|
| 9 |
+
"eval_threshold":0.7,
|
| 10 |
+
"max_docs":15,
|
| 11 |
+
"compression_method":"llm_lingua",
|
| 12 |
+
"compress_rate":0.33,
|
| 13 |
+
"force_tokens":".",
|
| 14 |
+
"eval_model":"deepseek-r1-distill-llama-70b",
|
| 15 |
+
"graph": {"address": "neo4j+s://4985272f.databases.neo4j.io", "username":"neo4j", "password":"***"},
|
| 16 |
+
"openai_api_key": "***",
|
| 17 |
+
"groq_api_key":"***",
|
| 18 |
+
"langsmith_api_key":"***"
|
| 19 |
+
}
|
requirements.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
langchain-community==0.3.0
|
| 2 |
+
sentence-transformers==3.1.0
|
| 3 |
+
openpyxl==3.1.5
|
| 4 |
+
langchain-groq==0.2.0
|
| 5 |
+
langchain-openai==0.2.0
|
| 6 |
+
langchain-core==0.3.1
|
| 7 |
+
llmlingua==0.2.2
|
| 8 |
+
langgraph>=0.2.4
|
| 9 |
+
langgraph-checkpoint-sqlite==1.0.3
|
| 10 |
+
langsmith==0.1.123
|
| 11 |
+
faiss-cpu==1.8.0.post1
|
| 12 |
+
neo4j==5.24.0
|
| 13 |
+
gradio==4.44.0
|
| 14 |
+
streamlit==1.31.0
|
| 15 |
+
pandas==2.1.3
|