This commit is contained in:
marko-kraemer 2025-08-29 15:26:55 -07:00
parent 40cade6d54
commit cff0348f9e
6 changed files with 17 additions and 21 deletions

6
apps/mobile/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli
expo-env.d.ts
# @end expo-cli

View File

@ -165,7 +165,6 @@ class XMLToolParser:
# Return as string
return value
def format_tool_call(self, function_name: str, parameters: Dict[str, Any]) -> str:
"""
Format a tool call in the XML format.

View File

@ -179,10 +179,6 @@ api_router.include_router(triggers_api.router)
from pipedream import api as pipedream_api
api_router.include_router(pipedream_api.router)
# MFA functionality moved to frontend
from admin import api as admin_api
api_router.include_router(admin_api.router)

View File

@ -216,17 +216,3 @@ class SunaDefaultAgentService:
logger.error(f"Failed to delete agent {agent_id}: {e}")
raise
# Legacy methods for backward compatibility
async def sync_all_suna_agents(self) -> Dict[str, Any]:
"""Legacy method - no longer needed as config is always current."""
logger.warning("sync_all_suna_agents is deprecated - Suna config is always current")
return {
"updated_count": 0,
"failed_count": 0,
"details": ["Sync not needed - Suna agents always use current config"]
}
async def update_all_suna_agents(self, target_version: Optional[str] = None) -> Dict[str, Any]:
"""Legacy method - no longer needed as config is always current."""
logger.warning("update_all_suna_agents is deprecated - Suna config is always current")
return await self.sync_all_suna_agents()

View File

@ -19,12 +19,21 @@ export const metadata: Metadata = {
title: siteConfig.name,
description: siteConfig.description,
siteName: siteConfig.name,
images: [
{
url: '/banner.png',
width: 1200,
height: 630,
alt: siteConfig.name,
},
],
},
twitter: {
card: 'summary_large_image',
title: siteConfig.name,
description: siteConfig.description,
creator: '@kortixai',
images: ['/banner.png'],
},
robots: {
index: true,

View File

@ -31,7 +31,7 @@ export default async function Image() {
}}
>
<img
src={`${baseUrl}/meta.png`}
src={`${baseUrl}/banner.png`}
alt={alt}
style={{
width: '100%',