File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66[ ![ License] ( https://img.shields.io/badge/license-Apache-blue )] ( https://github.com/lightspeed-core/lightspeed-stack/blob/main/LICENSE )
77[ ![ made-with-python] ( https://img.shields.io/badge/Made%20with-Python-1f425f.svg )] ( https://www.python.org/ )
88[ ![ Required Python version] ( https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Flightspeed-core%2Flightspeed-stack%2Frefs%2Fheads%2Fmain%2Fpyproject.toml )] ( https://www.python.org/ )
9- [ ![ Tag] ( https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack )] ( https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.3.1 )
9+ [ ![ Tag] ( https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack )] ( https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.4.0 )
1010
1111Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases.
1212
Original file line number Diff line number Diff line change 1313 "name" : " Apache 2.0" ,
1414 "url" : " https://www.apache.org/licenses/LICENSE-2.0.html"
1515 },
16- "version" : " 0.3.1 "
16+ "version" : " 0.4.0 "
1717 },
1818 "servers" : [
1919 {
77117711 ]
77127712 },
77137713 "tool_calls" : {
7714- "anyOf" : [
7715- {
7716- "items" : {
7717- "$ref" : " #/components/schemas/ToolCallSummary"
7718- },
7719- "type" : " array"
7720- },
7721- {
7722- "type" : " null"
7723- }
7724- ],
7714+ "items" : {
7715+ "$ref" : " #/components/schemas/ToolCallSummary"
7716+ },
7717+ "type" : " array" ,
77257718 "title" : " Tool Calls" ,
77267719 "description" : " List of tool calls made during response generation"
77277720 },
77287721 "tool_results" : {
7729- "anyOf" : [
7730- {
7731- "items" : {
7732- "$ref" : " #/components/schemas/ToolResultSummary"
7733- },
7734- "type" : " array"
7735- },
7736- {
7737- "type" : " null"
7738- }
7739- ],
7722+ "items" : {
7723+ "$ref" : " #/components/schemas/ToolResultSummary"
7724+ },
7725+ "type" : " array" ,
77407726 "title" : " Tool Results" ,
77417727 "description" : " List of tool results"
77427728 }
Original file line number Diff line number Diff line change @@ -5000,8 +5000,8 @@ Attributes:
50005000| input_tokens | integer | Number of tokens sent to LLM |
50015001| output_tokens | integer | Number of tokens received from LLM |
50025002| available_quotas | object | Quota available as measured by all configured quota limiters |
5003- | tool_calls | | List of tool calls made during response generation |
5004- | tool_results | | List of tool results |
5003+ | tool_calls | array | List of tool calls made during response generation |
5004+ | tool_results | array | List of tool results |
50055005
50065006
50075007## QuotaExceededResponse
Original file line number Diff line number Diff line change 99# [tool.pdm.version]
1010# source = "file"
1111# path = "src/version.py"
12- __version__ = "0.3.1 "
12+ __version__ = "0.4.0 "
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Feature: Info tests
1515 Given The system is in default state
1616 When I access REST API endpoint "info" using HTTP GET method
1717 Then The status code of the response is 200
18- And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.3.1
18+ And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.4.0
1919 And The body of the response has llama-stack version 0.3.5
2020
2121 @skip-in-library-mode
You can’t perform that action at this time.
0 commit comments