pgarbacki commited on
Commit
c3d73c3
1 Parent(s): 7465ab6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -112,4 +112,9 @@ model_inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(m
112
  generated_ids = model.generate(model_inputs, max_new_tokens=128)
113
  decoded = tokenizer.batch_decode(generated_ids)
114
  print(decoded[0])
115
- ```
 
 
 
 
 
 
112
  generated_ids = model.generate(model_inputs, max_new_tokens=128)
113
  decoded = tokenizer.batch_decode(generated_ids)
114
  print(decoded[0])
115
+ ```
116
+
117
+ ## Demo App
118
+
119
+ Check our easy-to-extend [demo chat app](https://github.com/fw-ai/forge/tree/main/apps/functional_chat) with function calling capabilities built on Firefunction model.
120
+ <img src="function_calling_demo.gif" alt="demo app" width="500"/>