Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# List of source files stored in `src/` directory

## [__init__.py](__init__.py)
Main classes for the Lightspeed-stack.
Main classes for the Lightspeed Core Stack REST API service.

## [client.py](client.py)
LLama stack client retrieval.
LLama Stack client retrieval class.

## [configuration.py](configuration.py)
Configuration loader.
Expand All @@ -13,7 +13,7 @@ Configuration loader.
Constants used in business logic.

## [lightspeed_stack.py](lightspeed_stack.py)
Lightspeed stack.
Entry point to the Lightspeed Core Stack REST API service.

## [log.py](log.py)
Log utilities.
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Main classes for the Lightspeed-stack."""
"""Main classes for the Lightspeed Core Stack REST API service."""
2 changes: 1 addition & 1 deletion src/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""LLama stack client retrieval."""
"""LLama Stack client retrieval class."""

import logging

Expand Down
2 changes: 1 addition & 1 deletion src/lightspeed_stack.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Lightspeed stack.
"""Entry point to the Lightspeed Core Stack REST API service.

This source file contains entry point to the service. It is implemented in the
main() function.
Expand Down