Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Observability #47

Merged
merged 2 commits into from
May 23, 2024
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
31 changes: 31 additions & 0 deletions cookbook/finetuning_embedding_model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from beyondllm import source, retrieve, llms
from beyondllm.embeddings import FineTuneEmbeddings
import os


# Setting up an environment variable for API key
os.environ['GOOGLE_API_KEY'] = "your-api-key"

# Importing and preparing the data
data = source.fit("build-career-in-ai.pdf", dtype="pdf", chunk_size=1024, chunk_overlap=0)

# List of files to train the embeddings
list_of_files = ['build-career-in-ai.pdf']

# Initializing a Gemini LLM model
llm = llms.GeminiModel()

# Creating an instance of FineTuneEmbeddings
fine_tuned_model = FineTuneEmbeddings()

# Training the embedding model
embed_model = fine_tuned_model.train(list_of_files, "BAAI/bge-small-en-v1.5", llm, "fintune")

# Option to load an already fine-tuned model
# embed_model = fine_tuned_model.load_model("fintune")

# Creating a retriever using the fine-tuned embeddings
retriever = retrieve.auto_retriever(data, embed_model, type="normal", top_k=4)

# Retrieving information using a query
print(retriever.retrieve("How to excel in AI?"))
1 change: 1 addition & 0 deletions src/beyondllm/observe/__intit__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .observe import Observer
26 changes: 26 additions & 0 deletions src/beyondllm/observe/observe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from dataclasses import dataclass
try:
import phoenix as px
from phoenix.trace.openai import OpenAIInstrumentor
except ImportError:
user_agree = input("The feature you're trying to use requires additional packages. Would you like to install them now? [y/N]: ")
if user_agree.lower() == 'y':
import subprocess
import sys
subprocess.check_call([sys.executable, "-m", "pip", "install", "arize-phoenix[evals]"])

import phoenix as px
from phoenix.trace.openai import OpenAIInstrumentor
else:
raise ImportError("The required Phoenix packages are not installed.")



@dataclass
class Observer:
instrumentor: OpenAIInstrumentor = OpenAIInstrumentor()

def run(self):
self.instrumentor.instrument()
self.session = px.launch_app()

Loading