JiaqiXue commited on
Commit
4d66914
·
verified ·
1 Parent(s): 70cd345

docs: change example query to Solve this integral

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -65,7 +65,7 @@ sys.path.insert(0, path)
65
  from router import R2Router
66
 
67
  router = R2Router.from_pretrained(path, embed_url="http://localhost:8000")
68
- result = router.route_text("What is the capital of France?")
69
  print(f"Model: {result['model_full_name']}, Budget: {result['token_limit']}")
70
  print(f"Estimated Quality: {result['predicted_quality']:.3f}, Estimated Cost: ${result['predicted_cost']:.6f}")
71
  ```
 
65
  from router import R2Router
66
 
67
  router = R2Router.from_pretrained(path, embed_url="http://localhost:8000")
68
+ result = router.route_text("Solve this integral")
69
  print(f"Model: {result['model_full_name']}, Budget: {result['token_limit']}")
70
  print(f"Estimated Quality: {result['predicted_quality']:.3f}, Estimated Cost: ${result['predicted_cost']:.6f}")
71
  ```