steffenc commited on
Commit
6d2280a
·
1 Parent(s): 9bd71dc

Add example to README

Browse files
Files changed (1) hide show
  1. README.md +18 -1
README.md CHANGED
@@ -87,16 +87,33 @@ Responses from the `/chat` endpoint are streamed back to the client as they are
87
  - `streamed_chunks_timings: List[float]`: The time taken to receive each streamed response
88
  - `synapse: StreamPromptingSynapse`: The synapse used to query the network. This contains full context and metadata about the query.
89
 
 
 
 
 
 
 
 
90
 
91
  ## Testing
92
 
93
  To test the API locally, you can use the following curl command:
94
 
95
  ```bash
96
- curl --no-buffer -X POST http://0.0.0.0:10000/chat/ -H "api_key: <ACCESS_KEY>" -d '{"k": 5, "timeout": 15, "roles": ["user"], "messages": ["What is today's date?"]}'
97
  ```
98
  > Note: Use the `--no-buffer` flag to ensure that the response is streamed back to the client.
99
 
 
 
 
 
 
 
 
 
 
 
100
  After verifying that the server is responding to requests locally, you can test the server on a remote machine.
101
 
102
  ### Troubleshooting
 
87
  - `streamed_chunks_timings: List[float]`: The time taken to receive each streamed response
88
  - `synapse: StreamPromptingSynapse`: The synapse used to query the network. This contains full context and metadata about the query.
89
 
90
+ The `StreamPromptingSynapse` object contains the following fields:
91
+ - `uid: int`: The unique identifier of the synapse
92
+ - `completion: str`: The final response from the network
93
+ - `timing: float`: The total time taken to receive the final response
94
+
95
+ > Note: The API is subject to change as the project evolves.
96
+
97
 
98
  ## Testing
99
 
100
  To test the API locally, you can use the following curl command:
101
 
102
  ```bash
103
+ curl --no-buffer -X POST http://0.0.0.0:10000/chat/ -H "api_key: <ACCESS_KEY>" -d '{"k": 5, "timeout": 15, "roles": ["user"], "messages": ["Tell me a happy story about a rabbit and a turtle that meet on a budget cruise around Northern Ireland"]}'
104
  ```
105
  > Note: Use the `--no-buffer` flag to ensure that the response is streamed back to the client.
106
 
107
+ The above example prompt yields the following.
108
+
109
+ Streamed response:
110
+ ```
111
+ Once upon a time, a rabbit named Rosie and a turtle named Tim embarked on a budget cruise around Northern Ireland. Despite their differences in speed, Rosie's energetic hopping and Tim's slow but steady pace, they quickly became friends during the voyage. \n\nAs they explored the stunning landscapes and quaint villages along the coast, Rosie and Tim discovered a shared love for adventure and new experiences. They enjoyed sampling local cuisine, attending traditional music sessions, and participating in fun onboard activities.\n\nOne memorable evening, under the shimmering Northern Lights, Rosie and Tim danced together on the deck, celebrating their unlikely friendship and the beauty of the world around them. Their bond transcended their differences, proving that true companionship knows no boundaries.\n\nAt the end of the cruise, as they bid farewell to their fellow travelers and the enchanting sights of Northern Ireland, Rosie and Tim knew that their special connection would last a lifetime. And so, with hearts full of joy and memories to cherish, the rabbit and the turtle set off on new adventures, forever grateful for the magical journey they shared.
112
+ ```
113
+ Final JSON:
114
+ ```json
115
+ {\"streamed_chunks\": [\"Once upon a time, a rabbit named Rosie and a turtle named Tim embarked on a budget cruise around Northern Ireland. Despite their differences in speed, Rosie's energetic hopping and Tim's slow but steady pace, they quickly became friends during the voyage. \\\\n\\\\nAs they explored the stunning landscapes and quaint villages along the coast, Rosie and Tim discovered a shared love for adventure and new experiences. They enjoyed sampling local cuisine, attending traditional music sessions, and participating in fun onboard activities.\\\\n\\\\nOne memorable evening, under the shimmering Northern Lights, Rosie and Tim danced together on the deck, celebrating their unlikely friendship and the beauty of the world around them. Their bond transcended their differences, proving that true companionship knows no boundaries.\\\\n\\\\nAt the end of the cruise, as they bid farewell to their fellow travelers and the enchanting sights of Northern Ireland, Rosie and Tim knew that their special connection would last a lifetime. And so, with hearts full of joy and memories to cherish, the rabbit and the turtle set off on new adventures, forever grateful for the magical journey they shared.\"], \"streamed_chunks_timings\": [4.6420252323150635], \"uid\": 559, \"completion\": \"Once upon a time, a rabbit named Rosie and a turtle named Tim embarked on a budget cruise around Northern Ireland. Despite their differences in speed, Rosie's energetic hopping and Tim's slow but steady pace, they quickly became friends during the voyage. \\\\n\\\\nAs they explored the stunning landscapes and quaint villages along the coast, Rosie and Tim discovered a shared love for adventure and new experiences. They enjoyed sampling local cuisine, attending traditional music sessions, and participating in fun onboard activities.\\\\n\\\\nOne memorable evening, under the shimmering Northern Lights, Rosie and Tim danced together on the deck, celebrating their unlikely friendship and the beauty of the world around them. Their bond transcended their differences, proving that true companionship knows no boundaries.\\\\n\\\\nAt the end of the cruise, as they bid farewell to their fellow travelers and the enchanting sights of Northern Ireland, Rosie and Tim knew that their special connection would last a lifetime. And so, with hearts full of joy and memories to cherish, the rabbit and the turtle set off on new adventures, forever grateful for the magical journey they shared.\", \"timing\": 4.720629930496216}"
116
+ ```
117
  After verifying that the server is responding to requests locally, you can test the server on a remote machine.
118
 
119
  ### Troubleshooting