Skip to content

Instantly share code, notes, and snippets.

View tkarna's full-sized avatar

Tuomas Kärnä tkarna

  • Intel
  • Finland
View GitHub Profile
@tkarna
tkarna / compile_ollama.md
Last active November 27, 2024 18:07
Compile ollama with SYCL support

Compile ollama in Ubuntu 22.04:

# Install and activate oneapi
sudo apt install intel-basekit
source /opt/intel/oneapi/setvars.sh

# You may need to install other build dependencies ...
# sudo apt install apt-utils
@tkarna
tkarna / test_react_agent.py
Created April 29, 2025 16:02
Langchain ReAct agent example
"""
ReAct agent example
Adapted from: https://langchain-ai.github.io/langgraph/how-tos/tool-calling/
"""
from langchain_core.tools import tool
from langgraph.prebuilt import ToolNode
from langgraph.graph import StateGraph, MessagesState
from langgraph.prebuilt import ToolNode
from langgraph.graph import StateGraph, MessagesState, START, END