Skip to main content

package to handle interacting with ai or llms

Project description

Microsoft Teams SDK

AI-powered conversational experiences for Microsoft Teams applications. Provides prompt management, action planning, and model integration for building intelligent Teams bots.

📖 Documentation

Installation

pip install microsoft-teams-ai

Or if using uv:

uv add microsoft-teams-ai

Usage

ChatPrompt

from microsoft_teams.ai import ChatPrompt, Function
from microsoft_teams.openai import OpenAICompletionsAIModel
from pydantic import BaseModel

model = OpenAICompletionsAIModel(api_key="your-api-key", model="gpt-4")

# Create a ChatPrompt
prompt = ChatPrompt(model)

result = await prompt.send(
    input="Hello!",
    instructions="You are a helpful assistant."
)

Function Calling

class GetWeatherParams(BaseModel):
    location: str

async def get_weather(params: GetWeatherParams) -> str:
    return f"The weather in {params.location} is sunny"

weather_function = Function(
    name="get_weather",
    description="Get weather for a location",
    parameter_schema=GetWeatherParams,
    handler=get_weather
)

prompt = ChatPrompt(model, functions=[weather_function])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

microsoft_teams_ai-2.0.0a17.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

microsoft_teams_ai-2.0.0a17-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file microsoft_teams_ai-2.0.0a17.tar.gz.

File metadata

  • Download URL: microsoft_teams_ai-2.0.0a17.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: RestSharp/106.13.0.0

File hashes

Hashes for microsoft_teams_ai-2.0.0a17.tar.gz
Algorithm Hash digest
SHA256 e3388f84666aa72206efb0fa5855a5d076bc87a52841a26a75ac90a3a2648dff
MD5 1e4e70904ae07748a935784d227ddb2e
BLAKE2b-256 38dbce50801a551395415498481304e8409b84bc5072da5b65396e13460715db

See more details on using hashes here.

File details

Details for the file microsoft_teams_ai-2.0.0a17-py3-none-any.whl.

File metadata

File hashes

Hashes for microsoft_teams_ai-2.0.0a17-py3-none-any.whl
Algorithm Hash digest
SHA256 70d3df79166f8aeb610db881971a49a136ee5e589d559808b84a5e2f90c3a714
MD5 b72c4c2c9b42ac24c751ca9dc67b31f5
BLAKE2b-256 a5f66c323d746aee7840691f4e970e692024f6d1990af5936a8a406282c9df35

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page