Skip to content

Commit 82e6281

Browse files
committed
fixed spacing issue of border
1 parent b2f79f4 commit 82e6281

File tree

12 files changed

+55
-55
lines changed

12 files changed

+55
-55
lines changed

website/docs/agents-sdk/advanced/multi-agent.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ server.register(BillingAgent()) # Uses "/billing"
132132
│ └─────────┘ └─────────┘ └─────────┘ │
133133
│ │
134134
│ Each agent has: │
135-
│ • GET/POST /route → SWML document │
136-
│ • POST /route/swaig → Function calls │
137-
│ • POST /route/post_prompt → Post-prompt handling │
135+
│ • GET/POST /route → SWML document
136+
│ • POST /route/swaig → Function calls
137+
│ • POST /route/post_prompt → Post-prompt handling
138138
│ │
139139
└─────────────────────────────────────────────────────────────────────────────┘
140140
```

website/docs/agents-sdk/advanced/search-knowledge.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ self.add_skill(
214214
│ ▼ │
215215
│ ┌────────────────────────────────────────┐ │
216216
│ │ SearchEngine performs: │ │
217-
│ │ • Vector similarity search │ │
218-
│ │ • Keyword matching │ │
219-
│ │ • Metadata filtering │ │
220-
│ │ • Result ranking │ │
217+
│ │ • Vector similarity search │ │
218+
│ │ • Keyword matching │ │
219+
│ │ • Metadata filtering │ │
220+
│ │ • Result ranking │ │
221221
│ └────────────────────────────────────────┘ │
222222
│ │ │
223223
│ ▼ │

website/docs/agents-sdk/building-agents/call-flow.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ The SDK provides three insertion points to customize this flow:
2121
```
2222
┌─────────────────────────────────────────────────────────────────┐
2323
│ PRE-ANSWER VERBS (call still ringing) │
24-
│ • Ringback tones, call screening, conditional routing │
24+
│ • Ringback tones, call screening, conditional routing
2525
└─────────────────────────────────────────────────────────────────┘
2626
2727
2828
┌─────────────────────────────────────────────────────────────────┐
2929
│ ANSWER VERB (call connected) │
30-
│ • Automatic when auto_answer=True (default) │
30+
│ • Automatic when auto_answer=True (default)
3131
└─────────────────────────────────────────────────────────────────┘
3232
3333
3434
┌─────────────────────────────────────────────────────────────────┐
3535
│ POST-ANSWER VERBS (before AI) │
36-
│ • Welcome messages, disclaimers, hold music │
36+
│ • Welcome messages, disclaimers, hold music
3737
└─────────────────────────────────────────────────────────────────┘
3838
3939
@@ -44,7 +44,7 @@ The SDK provides three insertion points to customize this flow:
4444
4545
┌─────────────────────────────────────────────────────────────────┐
4646
│ POST-AI VERBS (after conversation) │
47-
│ • Cleanup, transfers, surveys, logging │
47+
│ • Cleanup, transfers, surveys, logging
4848
└─────────────────────────────────────────────────────────────────┘
4949
```
5050

website/docs/agents-sdk/building-agents/prompts-pom.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ slug: /building-agents/prompts-pom
4545
│ ├── Section: "Guidelines" │
4646
│ │ ├── body: "Follow these guidelines:" │
4747
│ │ └── bullets: │
48-
│ │ • "Be professional" │
49-
│ │ • "Ask clarifying questions" │
50-
│ │ • "Keep responses concise" │
48+
│ │ • "Be professional"
49+
│ │ • "Ask clarifying questions"
50+
│ │ • "Keep responses concise"
5151
│ │ │
5252
│ └── Section: "Rules" │
5353
│ ├── body: "Adhere to these rules:" │

website/docs/agents-sdk/core-concepts/architecture.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ Before diving into these concepts, you should have:
3838
│ ▼ │
3939
│ ┌─────────────────────────────────────────────────────────────────────┐ │
4040
│ │ SignalWire Cloud │ │
41-
│ │ • Receives call │ │
42-
│ │ • Requests SWML from your agent │ │
43-
│ │ • Executes AI conversation │ │
44-
│ │ • Calls SWAIG functions when AI needs tools │ │
41+
│ │ • Receives call │ │
42+
│ │ • Requests SWML from your agent │ │
43+
│ │ • Executes AI conversation │ │
44+
│ │ • Calls SWAIG functions when AI needs tools │ │
4545
│ └─────────────────────────────────────────────────────────────────────┘ │
4646
│ │ │
4747
│ HTTP Requests │ HTTP Responses │

website/docs/agents-sdk/deployment/cgi-mode.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ chmod +x agent.py
7676
│ └──────────────────┘ │
7777
│ │ │
7878
│ │ Sets environment variables: │
79-
│ │ • GATEWAY_INTERFACE=CGI/1.1 │
80-
│ │ • PATH_INFO=/swaig │
81-
│ │ • CONTENT_LENGTH=... │
79+
│ │ • GATEWAY_INTERFACE=CGI/1.1
80+
│ │ • PATH_INFO=/swaig
81+
│ │ • CONTENT_LENGTH=...
8282
│ │ │
8383
│ ▼ │
8484
│ ┌──────────────────┐ │

website/docs/agents-sdk/examples/by-complexity.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,11 @@ The most robust agents use **code-driven architecture** where business logic liv
435435
│ │ │
436436
│ ▼ │
437437
│ Code enforces: │
438-
│ • Business rules │
439-
│ • State management │
440-
│ • Calculations
441-
│ • Validation
442-
│ • UI updates │
438+
│ • Business rules
439+
│ • State management
440+
│ • Calculations
441+
│ • Validation
442+
│ • UI updates
443443
│ │
444444
│ Advantage: LLM only translates intent, code does the rest │
445445
└─────────────────────────────────────────────────────────────┘

website/docs/agents-sdk/prefabs/receptionist.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ ReceptionistAgent provides these SWAIG functions automatically:
7979
│ │ │
8080
│ ▼ │
8181
│ 2. Collect Information │
82-
│ │ • Caller's name │
83-
│ │ • Reason for calling │
82+
│ │ • Caller's name
83+
│ │ • Reason for calling
8484
│ │ │
8585
│ ▼ │
8686
│ 3. AI calls collect_caller_info() │

website/docs/agents-sdk/reference/contexts.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,9 @@ builder.set_default_context("main")
335335
│ └──────────┘ │
336336
│ │
337337
│ Navigation: │
338-
│ • set_valid_steps: Control which steps can be reached │
339-
│ • set_valid_contexts: Control which contexts can be reached │
340-
│ • AI uses swml_change_step() or swml_change_context() to navigate │
338+
│ • set_valid_steps: Control which steps can be reached
339+
│ • set_valid_contexts: Control which contexts can be reached
340+
│ • AI uses swml_change_step() or swml_change_context() to navigate
341341
│ │
342342
└─────────────────────────────────────────────────────────────────────────────┘
343343
```

website/docs/agents-sdk/signalwire-integration/account-setup.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ Before connecting to SignalWire:
8989
│ │ ┌─────────────────────────────────────────────────────────────────┐ │ │
9090
│ │ │ Inbound Call SWML Processor │ │ │
9191
│ │ │ → │ │ │
92-
│ │ │ • Fetches SWML from your server │ │ │
93-
│ │ │ • Executes AI verbs │ │ │
94-
│ │ │ • Handles speech │ │ │
95-
│ │ │ • Calls SWAIG funcs │ │ │
92+
│ │ │ • Fetches SWML from your server │ │ │
93+
│ │ │ • Executes AI verbs │ │ │
94+
│ │ │ • Handles speech │ │ │
95+
│ │ │ • Calls SWAIG funcs │ │ │
9696
│ │ │ │ │ │ │
9797
│ │ └──────────────────────────────┼──────────────────────────────────┘ │ │
9898
│ └─────────────────────────────────┼─────────────────────────────────────┘ │
@@ -104,9 +104,9 @@ Before connecting to SignalWire:
104104
│ │ ┌─────────────────────────────────────────────────────────────────┐ │ │
105105
│ │ │ Agent (SWML) │ │ │
106106
│ │ │ │ │ │
107-
│ │ │ • Returns SWML doc │ │ │
108-
│ │ │ • Handles functions │ │ │
109-
│ │ │ • Business logic │ │ │
107+
│ │ │ • Returns SWML doc │ │ │
108+
│ │ │ • Handles functions │ │ │
109+
│ │ │ • Business logic │ │ │
110110
│ │ │ │ │ │
111111
│ │ └─────────────────────────────────────────────────────────────────┘ │ │
112112
│ └───────────────────────────────────────────────────────────────────────┘ │

0 commit comments

Comments
 (0)