We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c517e60 commit acd4785Copy full SHA for acd4785
1 file changed
README.md
@@ -7,19 +7,15 @@
7
Organize prompts into easy-to-use templates for [RubyLLM](https://github.com/crmne/ruby_llm).
8
9
```ruby
10
-chat = RubyLLM.chat
11
-chat.with_template(:extract_metadata, document: @document).complete
12
-
13
-# ----------------------------------
14
-# Retrieves the following files:
15
16
# prompts/
17
# extract_metadata/
18
# ├── system.txt.erb # System message
19
# ├── user.txt.erb # User prompt
20
# ├── assistant.txt.erb # Assistant message (optional)
21
# └── schema.rb # RubyLLM::Schema definition (optional)
22
+chat = RubyLLM.chat
+chat.with_template(:extract_metadata, document: @document).complete
23
```
24
25
## Features
0 commit comments