grok更新

This commit is contained in:
2026-07-18 15:24:16 +08:00
parent b6e8445d95
commit c3f82168b6
+89 -51
View File
@@ -86,27 +86,18 @@ func (c *Client) GenerateVideo(ctx context.Context, token, prompt, aspectRatio,
imageRefs = append(imageRefs, url) imageRefs = append(imageRefs, url)
} }
// grok occasionally accepts the conversation (HTTP 200) but closes the stream // grok streams progress inline, but the stream is fragile: it regularly dies
// after only the conversation object — no progress events, no videoUrl. This // mid-body ("unexpected EOF") after only the conversation object / an early
// is transient and surfaces as ErrTemporaryUpstream so the caller fails over // progress event — while grok keeps rendering the clip server-side. The
// to the NEXT account (换号重试) instead of retrying this one. // rendered clip always lands at the deterministic URL
const maxAttempts = 1 // assets.grok.com/users/{userId}/generated/{postId}/generated_video.mp4, so a
var ( // dead stream is NOT a failed generation: poll that URL until the clip is
postID string // ready instead of failing the job (which would also fail over and burn
artifact string // another account's credits for a video that already exists).
lastBody string postID, userID, err := c.createPost(ctx, submitClient, token, prompt)
lastErr error if err != nil {
) return nil, nil, err
for attempt := 1; attempt <= maxAttempts; attempt++ {
if ctx.Err() != nil {
return nil, nil, ctx.Err()
} }
pid, cpErr := c.createPost(ctx, submitClient, token, prompt)
if cpErr != nil {
lastErr = cpErr
continue
}
postID = pid
videoCfg := map[string]any{ videoCfg := map[string]any{
"parentPostId": postID, "parentPostId": postID,
@@ -130,12 +121,8 @@ func (c *Client) GenerateVideo(ctx context.Context, token, prompt, aspectRatio,
}, },
} }
// body may be partial when psErr != nil — still worth scanning.
body, psErr := c.postStream(ctx, submitClient, token, "/rest/app-chat/conversations/new", payload) body, psErr := c.postStream(ctx, submitClient, token, "/rest/app-chat/conversations/new", payload)
if psErr != nil {
// Transient HTTP/2 stream resets etc. — retry.
lastErr = psErr
continue
}
if dir := strings.TrimSpace(os.Getenv("GROK_DUMP")); dir != "" { if dir := strings.TrimSpace(os.Getenv("GROK_DUMP")); dir != "" {
_ = os.WriteFile(dir+"/grok_body_"+postID+".txt", []byte(body), 0o644) _ = os.WriteFile(dir+"/grok_body_"+postID+".txt", []byte(body), 0o644)
} }
@@ -143,16 +130,8 @@ func (c *Client) GenerateVideo(ctx context.Context, token, prompt, aspectRatio,
if strings.Contains(body, "usagePoolExhausted") || strings.Contains(body, "media generation credits") { if strings.Contains(body, "usagePoolExhausted") || strings.Contains(body, "media generation credits") {
return nil, nil, fmt.Errorf("%w: media generation credits exhausted", ErrQuotaExhausted) return nil, nil, fmt.Errorf("%w: media generation credits exhausted", ErrQuotaExhausted)
} }
// The artifact path appears as "videoUrl":"users/.../generated_video.mp4". if psErr != nil && (errors.Is(psErr, ErrAuth) || errors.Is(psErr, ErrQuotaExhausted)) {
lastBody = body return nil, nil, psErr
artifact = ""
for _, m := range videoURLRe.FindAllStringSubmatch(body, -1) {
if v := strings.TrimSpace(m[1]); v != "" {
artifact = v // keep the last (progress=100) one
}
}
if artifact != "" {
break
} }
// A fatal stream error means grok definitively rejected this generation // A fatal stream error means grok definitively rejected this generation
// (content moderation, an unsupported parameter, etc.). Retrying — on this // (content moderation, an unsupported parameter, etc.). Retrying — on this
@@ -161,14 +140,28 @@ func (c *Client) GenerateVideo(ctx context.Context, token, prompt, aspectRatio,
if strings.Contains(body, "STREAM_ERROR_SEVERITY_FATAL") { if strings.Contains(body, "STREAM_ERROR_SEVERITY_FATAL") {
return nil, nil, fmt.Errorf("grok: video generation rejected by upstream (fatal stream error): %s", clip([]byte(body), 200)) return nil, nil, fmt.Errorf("grok: video generation rejected by upstream (fatal stream error): %s", clip([]byte(body), 200))
} }
// No artifact and no fatal error: grok closed the stream early. Retry. // Fast path: the artifact appears as "videoUrl":"users/.../generated_video.mp4".
lastErr = nil artifact := ""
for _, m := range videoURLRe.FindAllStringSubmatch(body, -1) {
if v := strings.TrimSpace(m[1]); v != "" {
artifact = v // keep the last (progress=100) one
}
}
if artifact == "" && userID != "" {
// Stream ended without the artifact (dropped connection or early close):
// the render continues upstream — wait for the deterministic asset URL.
url := fmt.Sprintf("%susers/%s/generated/%s/generated_video.mp4", assetBase, userID, postID)
if werr := c.waitForAsset(ctx, directClient, token, url); werr == nil {
artifact = url
} else if errors.Is(werr, ErrAuth) || errors.Is(werr, context.Canceled) || errors.Is(werr, context.DeadlineExceeded) {
return nil, nil, werr
}
} }
if artifact == "" { if artifact == "" {
if lastErr != nil { if psErr != nil {
return nil, nil, lastErr return nil, nil, psErr
} }
return nil, nil, fmt.Errorf("%w: no video artifact in response: %s", ErrTemporaryUpstream, clip([]byte(lastBody), 200)) return nil, nil, fmt.Errorf("%w: no video artifact in response: %s", ErrTemporaryUpstream, clip([]byte(body), 200))
} }
fullURL := artifact fullURL := artifact
if !strings.HasPrefix(fullURL, "http") { if !strings.HasPrefix(fullURL, "http") {
@@ -275,20 +268,65 @@ func (c *Client) uploadFileV2(ctx context.Context, client tlsclient.HttpClient,
} }
// createPost registers a video media post and returns its id (parentPostId). // createPost registers a video media post and returns its id (parentPostId).
func (c *Client) createPost(ctx context.Context, client tlsclient.HttpClient, token, prompt string) (string, error) { // createPost creates the parent media post. grok uses its id as the videoId,
// and the rendered clip is stored under users/{userId}/generated/{postId}/.
func (c *Client) createPost(ctx context.Context, client tlsclient.HttpClient, token, prompt string) (postID, userID string, err error) {
res, err := c.postJSON(ctx, client, token, "/rest/media/post/create", map[string]any{ res, err := c.postJSON(ctx, client, token, "/rest/media/post/create", map[string]any{
"mediaType": "MEDIA_POST_TYPE_VIDEO", "mediaType": "MEDIA_POST_TYPE_VIDEO",
"prompt": prompt, "prompt": prompt,
}) })
if err != nil { if err != nil {
return "", err return "", "", err
} }
post, _ := res["post"].(map[string]any) post, _ := res["post"].(map[string]any)
id := strings.TrimSpace(stringValue(post["id"])) postID = strings.TrimSpace(stringValue(post["id"]))
if id == "" { userID = strings.TrimSpace(stringValue(post["userId"]))
return "", fmt.Errorf("%w: media post missing id", ErrTemporaryUpstream) if postID == "" {
return "", "", fmt.Errorf("%w: media post missing id", ErrTemporaryUpstream)
}
return postID, userID, nil
}
// waitForAsset polls a generated-asset URL (ranged GET on the local IP —
// assets.grok.com is not anti-bot gated) until grok finishes rendering it.
// 404 means "still rendering"; auth failures abort.
func (c *Client) waitForAsset(ctx context.Context, client tlsclient.HttpClient, token, url string) error {
deadline := time.Now().Add(6 * time.Minute)
for {
if err := ctx.Err(); err != nil {
return err
}
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return err
}
req = req.WithContext(ctx)
req.Header = http.Header{
"user-agent": {userAgent},
"referer": {origin + "/"},
"cookie": {"sso=" + token + "; sso-rw=" + token},
"range": {"bytes=0-0"},
}
if resp, derr := client.Do(req); derr == nil {
code := resp.StatusCode
_, _ = io.Copy(io.Discard, resp.Body)
resp.Body.Close()
switch {
case code == http.StatusOK || code == http.StatusPartialContent:
return nil
case code == http.StatusUnauthorized || code == http.StatusForbidden:
return fmt.Errorf("%w: asset %d", ErrAuth, code)
}
}
if time.Now().After(deadline) {
return fmt.Errorf("%w: video render did not complete in time", ErrTemporaryUpstream)
}
select {
case <-ctx.Done():
return ctx.Err()
case <-time.After(4 * time.Second):
}
} }
return id, nil
} }
// postJSON does an authed JSON POST and parses a single JSON object response. // postJSON does an authed JSON POST and parses a single JSON object response.
@@ -314,10 +352,10 @@ func (c *Client) postJSON(ctx context.Context, client tlsclient.HttpClient, toke
func (c *Client) postStream(ctx context.Context, client tlsclient.HttpClient, token, path string, body any) (string, error) { func (c *Client) postStream(ctx context.Context, client tlsclient.HttpClient, token, path string, body any) (string, error) {
raw, status, err := c.doPost(ctx, client, token, path, body) raw, status, err := c.doPost(ctx, client, token, path, body)
if err != nil { if err != nil {
return "", err return string(raw), err
} }
if e := mapStatus(path, status, raw); e != nil { if e := mapStatus(path, status, raw); e != nil {
return "", e return string(raw), e
} }
return string(raw), nil return string(raw), nil
} }
@@ -341,9 +379,9 @@ func (c *Client) doPost(ctx context.Context, client tlsclient.HttpClient, token,
defer resp.Body.Close() defer resp.Body.Close()
raw, err := io.ReadAll(resp.Body) raw, err := io.ReadAll(resp.Body)
if err != nil { if err != nil {
// Mid-body HTTP/2 stream resets ("stream error: ... INTERNAL_ERROR") are // Mid-body stream drops ("unexpected EOF", HTTP/2 resets) are common on
// transient — surface them as retryable. // long renders — return what was received so callers can still use it.
return nil, resp.StatusCode, fmt.Errorf("%w: %v", ErrTemporaryUpstream, err) return raw, resp.StatusCode, fmt.Errorf("%w: %v", ErrTemporaryUpstream, err)
} }
return raw, resp.StatusCode, nil return raw, resp.StatusCode, nil
} }