diff --git a/README.md b/README.md index ef73a17..49b97e9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # GroqCall.ai - Lightning-Fast LLM Function Calls [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1q3is7qynCsx4s7FBznCfTMnokbKWIv1F?usp=sharing) -[![Version](https://img.shields.io/badge/version-0.0.4-blue.svg)](https://github.com/unclecode/groqcall) +[![Version](https://img.shields.io/badge/version-0.0.5-blue.svg)](https://github.com/unclecode/groqcall) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) GroqCall is a proxy server that enables lightning-fast function calls for Groq's Language Processing Unit (LPU) and other AI providers. It simplifies the creation of AI assistants by offering a wide range of built-in functions hosted on the cloud. diff --git a/app/main.py b/app/main.py index b2f74b6..1c86474 100644 --- a/app/main.py +++ b/app/main.py @@ -58,7 +58,7 @@ async def index(request: Request): # Add an get endpoint simple return the evrsion of the app @app.get("/version") async def version(): - return {"version": "0.0.4"} + return {"version": "0.0.5"} if __name__ == "__main__":