Skip to content

Releases: apepkuss/Oji-Assistant

v0.0.2

20 Aug 09:54

Choose a tag to compare

🚀 Oji v0.0.2

Cross-platform desktop application and web app release

⚠️ macOS Users: If you see "Oji is damaged" error, right-click the app and select "Open" to bypass Gatekeeper security. This app is not Apple-notarized but is safe to use.

Key changes

  • Support runtime environment variables for web deployment:
    • AI_BASE_URL: Set default AI service base URL
    • AI_API_KEY: Set default API key
  • Provide modal window to show error messages from AI service
  • Add User ID and Max Completion Tokens configurations in Chat Settings
  • (UI) Optimize Server Settings page
  • (UI) Improve the rendering of markdown tables and math formula
  • (UI) Set empty AI service base URL as default
  • (UI) Optimize the status of the Connect button for connecting AI Service

v0.0.1

01 Aug 06:12

Choose a tag to compare

🚀 Oji v0.0.1

Cross-platform desktop application and web app release

⚠️ macOS Users: If you see "Oji is damaged" error, right-click the app and select "Open" to bypass Gatekeeper security. This app is not Apple-notarized but is safe to use.

📥 Downloads

🖥️ Desktop Versions

  • macOS: Download .dmg file (supports Intel and Apple Silicon)
  • Windows: Download .exe installer (supports auto-update)
  • Linux: Download .AppImage, .deb, or .rpm package

🌐 Web Version

🛠️ Installation Instructions

🖥️ Desktop Versions

macOS

  1. Download the .dmg file
  2. Open the downloaded file
  3. Drag the app to Applications folder
  4. If you see "Oji is damaged" error: Right-click the app → "Open" → "Open" to bypass Gatekeeper

Note: This app is not notarized by Apple. For first launch, you may need to:

  • Right-click the app and select "Open" instead of double-clicking
  • Or go to System Preferences → Security & Privacy → General → Allow apps downloaded from "App Store and identified developers"

Windows

  1. Download the .exe installer
  2. Run the installer and follow the setup wizard
  3. App will be installed and supports automatic updates

Linux

  • AppImage: Download and add execute permission with chmod +x, then run directly
  • DEB (Ubuntu/Debian): Install using sudo dpkg -i filename.deb
  • RPM (Fedora/RHEL): Install using sudo rpm -i filename.rpm

🌐 Web Version

Online Usage

  • Simply visit the link above to use Oji in your browser

Local Deployment

  1. Download the oji-web-v0.0.1.zip file
  2. Extract to your web server directory
  3. Access through web server (nginx, apache, or simple python -m http.server)

Docker Deployment

# Extract web files
unzip oji-web-v0.0.1.zip -d oji-web

# Deploy using nginx container
docker run -d -p 8080:80 -v $(pwd)/oji-web:/usr/share/nginx/html nginx

# Access at http://localhost:8080

⚙️ Configuration Notes

  • Web and desktop versions have identical functionality
  • Requires proper AI service endpoint URL configuration
  • Web version supports all modern browsers