# project-ai-services **Repository Path**: mirrors_ibm/project-ai-services ## Basic Information - **Project Name**: project-ai-services - **Description**: Project AI Services will help deploy e2e AI use cases that solve business problems for Power Customers. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-16 - **Last Updated**: 2025-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # AI-Services AI Services, part of the IBM Open-Source AI Foundation for Power, deliver pre-built AI capabilities and integration with inferencing solutions like Red Hat AI Inference Server. Optimized for IBM Spyreβ„’ on Power, they enable fast deployment and support models such as LLMs, embeddings, and re-rankersβ€”helping enterprises scale AI efficiently. ## πŸ“˜ Table of Contents - [**πŸ—ƒοΈ Repository Structure**](#repository-structure) - [**🌟 Introduction**](https://www.ibm.com/docs/aiservices?topic=services-introduction) - [**πŸ› οΈ Configuration and Installation**](https://www.ibm.com/docs/aiservices?topic=services-configuration-installation) - [Prerequisites](https://www.ibm.com/docs/aiservices?topic=installation-prerequisites) - [Quick Start](#quick-start) - [Set-up AI Services](https://www.ibm.com/docs/aiservices?topic=installation-setup-ai-services) - [Configuring in Air-gapped Environment](https://www.ibm.com/docs/aiservices?topic=installation-configuring-air-gapped-environment) - [**πŸ€– RAG Chatbot**](https://www.ibm.com/docs/en/aiservices?topic=services-rag-chatbot) - [Archtecture](https://www.ibm.com/docs/en/aiservices?topic=chatbot-architecture) - [Setting up RAG Chatbot](https://www.ibm.com/docs/en/aiservices?topic=chatbot-setting-up-rag) - **πŸ’» CLI Reference** - [Auto-completion](https://www.ibm.com/docs/aiservices?topic=reference-auto-completion) - [Commands](https://www.ibm.com/docs/aiservices?topic=reference-commands) - [**🧯 Troubleshooting**](https://www.ibm.com/docs/aiservices?topic=services-troubleshooting) - [**❓ FAQ**](https://www.ibm.com/docs/aiservices?topic=services-faq) - [**⚠️ Limitations**](https://www.ibm.com/docs/aiservices?topic=services-limitations) - [**πŸ‘©β€πŸ’»Developer Guide**](https://www.ibm.com/docs/en/aiservices?topic=services-developer-guide) - [**πŸš€ Contributing**](./CONTRIBUTING.md) --- ## Quick Start ### Pull in AI Services binary Download the latest ai-services binary from the [releases page](https://github.com/IBM/project-ai-services/releases). Use the following curl command to download it (replace `version` with the desired release tag): ```bash $ curl -LO https://github.com/IBM/project-ai-services/releases/download//ai-services $ sudo chmod +x ai-services $ sudo mv ai-services /usr/local/bin/ ``` ### Run the binary to get started ```bash % ai-services --help A CLI tool for managing AI Services infrastructure. Usage: ai-services [command] Available Commands: application Deploy and monitor the applications completion Generate the autocompletion script for the specified shell help Help about any command version Prints CLI version with more info Flags: -h, --help help for ai-services -v, --version version for ai-services Use "ai-services [command] --help" for more information about a command. ``` --- ## Repository Structure ```bash project-ai-services/ β”œβ”€β”€ README.md # Project documentation β”œβ”€β”€ ai-services/ # CLI tool for project-ai-services β”‚ β”œβ”€β”€ assets/ # Application template files β”œβ”€β”€ images/ # Helper/Utility image assets β”œβ”€β”€ spyre-rag/ # Spyre RAG implementation β”œβ”€β”€ test/ # Test assets β”‚ β”œβ”€β”€ golden/ # Golden dataset ```