Skip to content

Commit 32eaf62

Browse files
committed
Add Microsoft Teams location support for Ask Fern
- Add 'teams' enum value to AISearchLocation type in docs.yml - Update locations-and-datasources.mdx with Teams configuration docs - Enable Ask Fern integration for Microsoft Teams workspaces
1 parent 52df357 commit 32eaf62

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

fern/apis/docs-yml/definition/docs.yml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,25 @@ types:
166166

167167
TabId: string
168168

169-
AIChatConfig:
170-
properties:
169+
AISearchLocation:
170+
enum:
171+
- docs
172+
- slack
173+
- discord
174+
- teams
175+
176+
AIChatConfig:
177+
properties:
171178
model: optional<AIChatModel>
172-
"system-prompt":
179+
"system-prompt":
173180
type: optional<string>
174-
docs: This is a system prompt that acts as context given to the LLM for AI chat.
175-
176-
AIChatModel:
177-
enum:
181+
docs: This is a system prompt that acts as context given to the LLM for AI chat.
182+
location:
183+
type: optional<list<AISearchLocation>>
184+
docs: Determines where Ask Fern will be available to users. Can include docs, slack, discord, or teams.
185+
186+
AIChatModel:
187+
enum:
178188
- value: "claude-3.5"
179189
name: claude_3_5
180190
- value: "claude-3.7"

fern/products/ask-fern/pages/configuration/locations-and-datasources.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ ai-search:
1515
- docs
1616
- slack
1717
- discord
18+
- teams
1819
```
1920
2021
### Available locations
@@ -31,6 +32,10 @@ ai-search:
3132
Enables Ask Fern in Discord. This allows your community to get AI-powered answers in your Discord server.
3233
</ParamField>
3334
35+
<ParamField path="teams" type="string">
36+
Enables Ask Fern in Microsoft Teams. This allows your team to get AI-powered answers in your Teams workspace.
37+
</ParamField>
38+
3439
## Datasources (coming soon)
3540
3641
The `datasources` field allows you to specify additional content sources that Ask Fern should index and search. This is useful when you want to include content from external websites or documentation that isn't part of your main docs.

0 commit comments

Comments
 (0)