Skip to content

Commit a18db53

Browse files
committed
added suport for Claude 3.5 inc. function calls, improved retrieval and dataframe comprehension
This is a relatively large, and potentially breaking update. - Added support for Anthropic Claude 3.5 including function calls (streaming) - Major overhaul to vector storage and retrieval - Added a functionality when data frames can be explained/described with ontology. This significantly improves the accuracy of the responses. - Added a new agent "Dataframe Inspector" - A bunch of changes to prompts to facilitate the new features
1 parent 9b6433c commit a18db53

18 files changed

+910
-165
lines changed

LLM_CONFIG_sample.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{"agent": "Expert Selector", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},
33
{"agent": "Analyst Selector", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},
44
{"agent": "Theorist", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},
5+
{"agent": "Dataframe Inspector", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},
56
{"agent": "Planner", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},
67
{"agent": "Code Generator", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},
78
{"agent": "Code Debugger", "details": {"model": "gpt-4o", "provider":"openai","max_tokens": 4000, "temperature": 0}},

PROMPT_TEMPLATES_sample.json

-25
This file was deleted.

0 commit comments

Comments
 (0)