Skip to content

Commit e956b92

Browse files
committed
Converted build sys prompt to runnable to align w/ all other examples, improved comment ↞ [auto-sync from https://github.com/KudoAI/ai-personas/tree/main/python]
1 parent 15ebce5 commit e956b92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ai-personas/docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ system_prompt = ai_personas['Study Planner']['prompt']
152152

153153
messages = [
154154
{'role': 'system', 'content': system_prompt},
155-
{'role': 'user', 'content': '<your_query>'}
155+
{'role': 'user', 'content': 'Create a weekly study plan for calculus'}
156156
]
157157
```
158158

@@ -170,7 +170,7 @@ response = client.chat.completions.create(
170170
model='gpt-5.4',
171171
messages=[
172172
{'role': 'system', 'content': persona_prompt},
173-
{'role': 'user', 'content': 'ls -la'} # list files
173+
{'role': 'user', 'content': 'ls -la'} # list all files (incl. hidden)
174174
]
175175
)
176176

0 commit comments

Comments
 (0)