You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -169,7 +169,7 @@ With the simulator initialized, you can now run it to generate synthetic convers
169
169
outputs =await simulator(
170
170
target=callback,
171
171
text=text,
172
-
num_queries=1, # Minimal number of queries
172
+
num_queries=1, # Minimal number of queries.
173
173
)
174
174
175
175
```
@@ -199,7 +199,7 @@ outputs = await simulator(
199
199
num_queries=4,
200
200
max_conversation_turns=2,
201
201
tasks=tasks,
202
-
query_response_generating_prompty=query_response_prompty_override # Optional, use your own prompt to control how query-response pairs are generated from the input text to be used in your simulator.
202
+
query_response_generating_prompty=query_response_prompty_override # Optional: Use your own prompt to control how query-response pairs are generated from the input text to be used in your simulator.
user_simulator_prompty="user_simulating_application.prompty", # A prompty which accepts all the following kwargs can be passed to override default user behaviour.
225
-
user_simulator_prompty_kwargs=user_simulator_prompty_kwargs #Uses a dictionary to override default model parameters such as `temperature` and `top_p`.
223
+
num_queries=1, # Minimal number of queries.
224
+
user_simulator_prompty="user_simulating_application.prompty", # A prompty that accepts all the following kwargs can be passed to override the default user behavior.
225
+
user_simulator_prompty_kwargs=user_simulator_prompty_kwargs #It uses a dictionary to override default model parameters such as `temperature` and `top_p`.
226
226
)
227
227
```
228
228
@@ -295,7 +295,7 @@ eval_output = evaluate(
295
295
"groundedness": groundedness_evaluator
296
296
},
297
297
output_path="groundedness_eval_output.json",
298
-
azure_ai_project=project_scope #Optional for uploading to your Azure AI Project
298
+
azure_ai_project=project_scope #This is an optional step used for uploading to your Azure AI Project.
0 commit comments