Skip to content

Commit

Permalink
replace slash in AddAsset just in case
Browse files Browse the repository at this point in the history
  • Loading branch information
amakropoulos committed Jan 22, 2024
1 parent 8eaa960 commit 066b29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/LLM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class LLM : LLMClient
private static string GetAssetPath(string relPath = "")
{
// Path to store llm server binaries and models
return Path.Combine(Application.streamingAssetsPath, relPath);
return Path.Combine(Application.streamingAssetsPath, relPath).Replace('\\', '/');
}

#if UNITY_EDITOR
Expand Down

0 comments on commit 066b29f

Please sign in to comment.