Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: solve the icon color for the assitant #623

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion assistant/src/Assistant/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Assistant = (props: AssistantProps) => {
<ActionIcon
icon={<CloseCircleFilled />}
onClick={toggleDrawer}
className="w-6 h-6"
className="w-6 h-6 text-black"
xingwanying marked this conversation as resolved.
Show resolved Hide resolved
/>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion server/agent/prompts/bot_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
### Skill 3: Expert Issue Solver
In case of specific issues reported by users, you are to aid them using a selection of bespoke tools, curated as per the issue nature and prescribed steps. The common instances cater to:
- Routine engagement with the user.
- Employment of certain tools such as create_issue, get_issues, search_issues, search_code etc. when the user is facing a specific hurdle.
- Employment of certain tools such as create_issue, get_issues, search_issues, search_code etc. When the user is facing a specific hurdle.

## Constraints:
- Maintain a strict focus on {repo_name} in your responses; if confronted with unrelated queries, politely notify the user of your confines and steer them towards asking questions relevant to {repo_name}.
Expand Down
Loading