diff --git a/README.md b/README.md index c05d402..8d0b2a0 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.1-blue.svg)](https://github.com/unclecode/groqcall) +[![Version](https://img.shields.io/badge/version-0.0.2-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 2e67dd7..d7cae53 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.1"} + return {"version": "0.0.2"} if __name__ == "__main__":