Skip to content

Commit 962ae1d

Browse files
Merge pull request #219 from askui/rename-vision-agent-to-python-sdk
rename vision agent to python sdk
2 parents c59b3c3 + 8f72bb4 commit 962ae1d

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 🤖 AskUI Vision Agent
1+
# 🤖 AskUI Python SDK
22

33
[![Release Notes](https://img.shields.io/github/release/askui/vision-agent?style=flat-square)](https://github.com/askui/vision-agent/releases)
44
[![PyPI - License](https://img.shields.io/pypi/l/langchain-core?style=flat-square)](https://opensource.org/licenses/MIT)
@@ -33,7 +33,7 @@ Join the [AskUI Discord](https://discord.gg/Gu35zMGxbx).
3333

3434
## 📖 Introduction
3535

36-
AskUI Vision Agent is a powerful automation framework that enables you and AI agents to control your desktop, mobile, and HMI devices and automate tasks. With support for multiple AI models, multi-platform compatibility, and enterprise-ready features,
36+
AskUI Python SDK is a powerful automation framework that enables you and AI agents to control your desktop, mobile, and HMI devices and automate tasks. With support for multiple AI models, multi-platform compatibility, and enterprise-ready features,
3737

3838
https://github.com/user-attachments/assets/a74326f2-088f-48a2-ba1c-4d94d327cbdf
3939

docs/chat.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**⚠️ Warning:** AskUI Chat is currently in an experimental stage and has several limitations (see below).
44

5-
AskUI Chat is a web application that allows interacting with an AskUI Vision Agent similar how it can be
5+
AskUI Chat is a web application that allows interacting with an AskUI Python SDK similar how it can be
66
done with `VisionAgent.act()` or `AndroidVisionAgent.act()` but in a more interactive manner that involves less code.
77

88
## Table of Contents
@@ -35,8 +35,8 @@ pip install askui[chat]
3535

3636
To use the chat, configure the following environment variables:
3737

38-
- `ASKUI_TOKEN`: AskUI Vision Agent behind chat uses currently the AskUI API
39-
- `ASKUI_WORKSPACE_ID`: AskUI Vision Agent behind chat uses currently the AskUI API
38+
- `ASKUI_TOKEN`: AskUI Python SDK behind chat uses currently the AskUI API
39+
- `ASKUI_WORKSPACE_ID`: AskUI Python SDK behind chat uses currently the AskUI API
4040
- `ASKUI__CHAT_API__DATA_DIR` (optional, defaults to `$(pwd)/chat`): Currently, the AskUI chat stores all data in a directory locally. You can change the default directory by setting this environment variable.
4141
- `ASKUI__CHAT_API__HOST` (optional, defaults to `127.0.0.1`): The host to bind the chat API to.
4242
- `ASKUI__CHAT_API__PORT` (optional, defaults to `9261`): The port to bind the chat API to.

docs/extracting-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Extracting Data
22

3-
This guide covers how to extract information from screens using AskUI Vision Agent's `get()` method, including structured data extraction, response schemas, and working with different data sources.
3+
This guide covers how to extract information from screens using AskUI Python SDK's `get()` method, including structured data extraction, response schemas, and working with different data sources.
44

55
## Table of Contents
66

docs/file-support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# File Format Support in AskUI Vision Agent
1+
# File Format Support in AskUI Python SDK
22

3-
This document provides comprehensive information about how different file formats are supported in the AskUI Vision Agent, including their processing methods and integration with Large Language Models (LLMs).
3+
This document provides comprehensive information about how different file formats are supported in the AskUI Python SDK, including their processing methods and integration with Large Language Models (LLMs).
44

55
## Supported File Formats
66

7-
The AskUI Vision Agent supports the following file formats for data extraction and processing:
7+
The AskUI Python SDK supports the following file formats for data extraction and processing:
88

99
### 📄 PDF Files (.pdf)
1010

docs/using-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Using Models
22

3-
This guide covers all the AI models available in AskUI Vision Agent, their capabilities, how to authenticate with them, and how to create custom models. AskUI Vision Agent supports multiple AI model providers and self-hosted models, each with different strengths and use cases.
3+
This guide covers all the AI models available in AskUI Python SDK, their capabilities, how to authenticate with them, and how to create custom models. AskUI Python SDK supports multiple AI model providers and self-hosted models, each with different strengths and use cases.
44

55
**Important Note:** Although we would love to support all kinds of models, models hosted by us (AskUI) are our primary focus and receive the most comprehensive support, testing, and optimization. Other models rely on community contributions and may have varying levels of support. We highly appreciate community contributions to improve support for other models!
66

src/askui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""AskUI Vision Agent"""
1+
"""AskUI Python SDK"""
22

33
__version__ = "0.23.0"
44

src/askui/reporting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def generate(self) -> None:
194194
<head>
195195
<meta charset="UTF-8">
196196
<meta name="viewport" content="width=device-width, initial-scale=1.0">
197-
<title>Vision Agent Report - {{ timestamp }}</title>
197+
<title>AskUI Python SDK Report - {{ timestamp }}</title>
198198
<link rel="stylesheet"
199199
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github-dark.min.css">
200200
<script
@@ -649,7 +649,7 @@ def generate(self) -> None:
649649
<div class="theme-toggle" onclick="toggleTheme()" title="Toggle dark/light mode">
650650
<div class="theme-toggle-slider"></div>
651651
</div>
652-
<h1>Vision Agent Report</h1>
652+
<h1>AskUI Python SDK Report</h1>
653653
<p>Generated: {{ timestamp }}</p>
654654
</div>
655655

0 commit comments

Comments
 (0)