Skip to content

Commit 5bc286f

Browse files
authored
AI Client scenario added to Common Scenarios in UG (#491)
1 parent ee7eb57 commit 5bc286f

File tree

3 files changed

+547
-1
lines changed

3 files changed

+547
-1
lines changed

user-guide/modules/ROOT/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Official repository: https://github.com/boostorg/website-v2-docs
1616
** xref:common-introduction.adoc[]
1717
** xref:task-finance.adoc[]
1818
** xref:task-networking.adoc[]
19+
** xref:task-ai-client.adoc[]
1920
** xref:task-simulation.adoc[]
2021
** xref:task-system.adoc[]
2122
** xref:testing-debugging.adoc[]

user-guide/modules/ROOT/pages/common-introduction.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ There are many common use-cases for the Boost libraries.
1515

1616
xref:task-finance.adoc[] can be relatively simple in terms of numerical operations - additions for deposits, subtractions for withdrawals, and multiplications for interest calculation and foreign currency trading - but delving into secure networking and cryptography makes this scenario a serious challenge.
1717

18-
In the realm of software development, xref:task-networking.adoc[] involves the communication and data exchange between different software systems across networks. Networking code often deals with protocols like HTTP, FTP, TCP/IP, UDP, and WebSockets, to name a few. Networking tasks might include creating a web server, crafting a custom protocol for communication between distributed parts of an application, or designing software that interacts with REST APIs.
18+
In the realm of software development, xref:task-networking.adoc[] involves the communication and data exchange between different software systems across networks. Networking code often deals with protocols like HTTP, FTP, TCP/IP, UDP, and WebSockets, to name a few. Networking tasks might include creating a web server, crafting a custom protocol for communication between distributed parts of an application, or designing software that interacts with REST APIs.
19+
20+
For a variation of the client/server scenario, the xref:task-ai-client.adoc[] examples show how to make requests and parse responses from an AI model. Certainly fun, it's usefulness can vary.
1921

2022
xref:task-simulation.adoc[] in software is about creating a virtual model of a system in order to understand or predict its behavior. It’s often used in areas such as physics, engineering, biology, and finance to model complex real-world systems. Simulation code can involve heavy computations, data analysis, and often makes use of concurrent programming to speed up execution.
2123

0 commit comments

Comments
 (0)