You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: assistants/codespace-assistant/assistant/config.py
+162-9Lines changed: 162 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -98,13 +98,17 @@ class ResponseBehaviorConfigModel(BaseModel):
98
98
description="The message to display when the conversation starts.",
99
99
),
100
100
UISchema(widget="textarea"),
101
-
] = (
102
-
"Hello! I am an assistant that can help you with coding projects within the context of the Semantic Workbench."
103
-
"Let's get started by having a conversation about your project. You can ask me questions, request code"
104
-
" snippets, or ask for help with debugging. I can also help you with markdown, code snippets, and other types"
105
-
" of content. You can also attach .docx, text, and image files to your chat messages to help me better"
106
-
" understand the context of our conversation. Where would you like to start?"
107
-
)
101
+
] =dedent("""
102
+
Welcome! I'm here to help you with your coding and development projects. Here's how we can work together:
103
+
- 💻 Explore your code - share files, snippets, or describe what you're working on
104
+
- 🔧 Debug and refine - I can help troubleshoot issues and suggest improvements
105
+
- 📋 Generate solutions - ask for code snippets, algorithms, or implementation ideas
106
+
- 📚 Learn and understand - I can explain concepts, patterns, and approaches
107
+
108
+
Simply upload your code files, describe your project, or ask technical questions. I'm ready to assist with languages, frameworks, debugging, and development best practices.
109
+
110
+
What coding project can I help you with today?
111
+
""").strip()
108
112
109
113
only_respond_to_mentions: Annotated[
110
114
bool,
@@ -712,7 +716,7 @@ class WorkspaceResponseBehaviorConfigModel(ResponseBehaviorConfigModel):
712
716
- 🗃️ Upload files you are working with and I'll take it from there
713
717
- 📝 I can make you an initial draft like *Write a proposal for new project management software in our department*
714
718
- 🧪 Ask me to conduct research for example, *Find me the latest competitors in the wearables market*
description="Enable your assistant to perform web research on a given topic. It will generate a list of facts it needs to collect and use Bing search and simple web requests to fill in the facts. Once it decides it has enough, it will summarize the information and return it as a report.",
description="Enable a web research tool that is modeled after the Open Deep Research project as a demonstration of writing routines using our Skills library.",
description="The message to display when the conversation starts.",
908
+
),
909
+
UISchema(widget="textarea"),
910
+
] =dedent("""
911
+
Welcome! I'm here to help you capture and share complex information in a way that others can easily explore and understand. Think of me as your personal knowledge bridge - I'll help you:
912
+
- 📚 **Organize your thoughts** - whether from documents, code, research papers, or brainstorming sessions
913
+
- 🔄 **Establish shared understanding** - I'll ask questions to ensure we're aligned on what matters most
914
+
- 🔍 **Make your knowledge interactive** - so others can explore the "why" behind decisions, alternatives considered, and deeper context
915
+
- 🔗 **Create shareable experiences** - when we're done, share a link that gives others a self-service way to explore your knowledge
916
+
917
+
Simply share your content or ideas, tell me who needs to understand them, and what aspects you want to highlight. We'll work together to create an interactive knowledge space that others can explore at their own pace.
0 commit comments