Nexa_Labs / agent /config.yaml
Allanatrix's picture
Upload 57 files
d8328bf verified
model:
description: "NexaSci Assistant merged Falcon model configuration."
base_repo: "Allanatrix/Nexa_Sci_distilled_Falcon-10B"
merged_path: null
adapter_path: null
backend: "transformers"
torch_dtype: "bfloat16"
trust_remote_code: true
generation:
max_new_tokens: 512
temperature: 0.3
top_p: 0.9
repetition_penalty: 1.05
system_prompt: "You are the NexaSci Assistant, a scientific research agent that reasons carefully, calls tools when needed, and returns structured, citation-backed answers."
tool_prefix: "~~~toolcall"
tool_suffix: "~~~"
final_prefix: "~~~final"
final_suffix: "~~~"
stop_sequences:
- "~~~toolcall"
- "~~~final"
tool_server:
base_url: "http://127.0.0.1:8000"
request_timeout_s: 30
model_server:
base_url: "http://127.0.0.1:8001"
enabled: true
tooling:
available_tools:
- "python.run"
- "papers.search"
- "papers.fetch"
- "papers.search_corpus"
sandbox:
timeout_s: 10
memory_limit_mb: 2048
working_directory: "./tmp/python"
allowed_modules:
- "numpy"
- "scipy"
- "pandas"
- "matplotlib"
- "sympy"
- "seaborn"
corpus:
index_dir: "./index"
embeddings_path: "./index/embeddings.npy"
corpus_path: "./index/corpus.json"
graph_path: "./index/graph.json"