Skip to content

Commit

Permalink
Delete example test data
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian-Winter committed May 13, 2024
1 parent bf284f8 commit 80b731d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 32 deletions.
3 changes: 1 addition & 2 deletions examples/01_Basics/chatbot_using_llama_cpp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@
settings = provider.get_provider_default_settings()
settings.n_predict = 512
settings.temperature = 0.65
agent.chat_history.get_message_store().load_from_json("test.json")

while True:
user_input = input(">")
if user_input == "exit":
break
agent_output = agent.get_chat_response(user_input, llm_sampling_settings=settings)
agent.chat_history.get_message_store().save_to_json("test.json")
print(f"Agent: {agent_output.strip()}")
30 changes: 0 additions & 30 deletions examples/01_Basics/test.json

This file was deleted.

0 comments on commit 80b731d

Please sign in to comment.