Skip to content

Commit

Permalink
added image
Browse files Browse the repository at this point in the history
  • Loading branch information
sreyakumar committed Nov 1, 2024
1 parent 6098cbf commit 9b0bd77
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ test_agentic_graph_DB.py
test_agentic_graph_VI.py
test.py
graph_viz.ipynb
.jpeg

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
2 changes: 1 addition & 1 deletion evaluations/async_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async def main():
langsmith_app, # Your AI system
data=dataset_name, # The data to predict and grade over
evaluators=[evaluator], # The evaluators to score the results
experiment_prefix="async-metadata-chatbot-0.0.49", # A prefix for your experiment names to easily identify them
experiment_prefix="async-metadata-chatbot-0.0.55", # A prefix for your experiment names to easily identify them
)
return experiment_results

Expand Down
2 changes: 1 addition & 1 deletion evaluations/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ def langsmith_app(inputs):
langsmith_app, # Your AI system
data=dataset_name, # The data to predict and grade over
evaluators=[evaluator], # The evaluators to score the results
experiment_prefix="metadata-chatbot-0.0.53", # A prefix for your experiment names to easily identify them
experiment_prefix="metadata-chatbot-0.0.54", # A prefix for your experiment names to easily identify them
)
Binary file added multi-agent-workflow-11-01.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/metadata_chatbot/agents/agentic_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class RetrievalGrader(TypedDict):

# Generating response to documents
answer_generation_prompt = hub.pull("eden19/answergeneration")
rag_chain = answer_generation_prompt | SONNET_3_LLM | StrOutputParser()
rag_chain = answer_generation_prompt | SONNET_3_5_LLM | StrOutputParser()

db_answer_generation_prompt = hub.pull("eden19/db_answergeneration")
# class DatabaseGeneration(BaseModel):
Expand Down

0 comments on commit 9b0bd77

Please sign in to comment.