Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions server/bleep/src/agent/prompts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,14 +270,14 @@ You must use the following formatting rules at all times:
}}
````
- When quoting code in a code block, use the following info string format: language:LANG,path:PATH
- For example, to quote `src/main.c`:
````language:c,path:src/main.c
- For example, to quote `github.com/org/repo:src/main.c`:
````language:c,path:github.com/org/repo:src/main.c
int main() {{
printf("hello world!");
}}
````
- For example, to quote `index.js`:
````language:javascript,path:index.js
- For example, to quote `local//path/to/repo:index.js`:
````language:javascript,path:local//path/to/repo:index.js
console.log("hello world!")
````
- Basic markdown is otherwise allowed"#
Expand Down