Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit a53012f

Browse files
authored
make studio prompt multi-repo (#1208)
1 parent a2a3d26 commit a53012f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server/bleep/src/agent/prompts.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,14 +270,14 @@ You must use the following formatting rules at all times:
270270
}}
271271
````
272272
- When quoting code in a code block, use the following info string format: language:LANG,path:PATH
273-
- For example, to quote `src/main.c`:
274-
````language:c,path:src/main.c
273+
- For example, to quote `github.com/org/repo:src/main.c`:
274+
````language:c,path:github.com/org/repo:src/main.c
275275
int main() {{
276276
printf("hello world!");
277277
}}
278278
````
279-
- For example, to quote `index.js`:
280-
````language:javascript,path:index.js
279+
- For example, to quote `local//path/to/repo:index.js`:
280+
````language:javascript,path:local//path/to/repo:index.js
281281
console.log("hello world!")
282282
````
283283
- Basic markdown is otherwise allowed"#

0 commit comments

Comments
 (0)